home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / intuisup.lha / Intuisup / source.lha / Editor / imports.h < prev    next >
Text File  |  1992-09-14  |  2KB  |  71 lines

  1. /* $Revision Header *** Header built automatically - do not edit! ***********
  2.  *
  3.  *    (C) Copyright 1991 by Torsten Jürgeleit
  4.  *
  5.  *    Name .....: imports.h
  6.  *    Created ..: Sunday 22-Dec-91 21:22:34
  7.  *    Revision .: 0
  8.  *
  9.  *    Date        Author                 Comment
  10.  *    =========   ====================   ====================
  11.  *    22-Dec-91   Torsten Jürgeleit      Created this file!
  12.  *
  13.  ****************************************************************************
  14.  *
  15.  *    Imports
  16.  *
  17.  * $Revision Header ********************************************************/
  18.  
  19.     /* Import from main.c */
  20.  
  21. IMPORT struct GfxBase            *GfxBase;
  22. IMPORT struct IntuitionBase    *IntuitionBase;
  23. IMPORT struct Library            *IntuiSupBase;
  24. IMPORT struct ExecBase *SysBase;
  25. IMPORT struct ReqToolsBase *ReqToolsBase;
  26.  
  27. IMPORT struct Screen                wb_screen;
  28. IMPORT struct Window                *ewin, *pwin;
  29. IMPORT struct TextAttr            topaz60_attr, topaz80_attr;
  30. IMPORT struct NewWindow            project_new_window;
  31. IMPORT struct NewScreen            editor_new_screen;
  32. IMPORT USHORT                        editor_screen_type;
  33.  
  34. IMPORT struct TemplateList        template_list;
  35. IMPORT struct Template            *selected_template,
  36.                                         *info_template;
  37. IMPORT struct Box                    current_box;
  38.  
  39. IMPORT struct GadgetData        *use_gd;
  40. IMPORT struct Dimension            min_dimension[];
  41. IMPORT struct rtFileRequester    *project_file_requester,
  42.                                         *csource_file_requester;
  43. IMPORT struct Hook            filterhook;
  44.  
  45. IMPORT struct GadgetData        text_gadget_data[], normal_gadget_data[];
  46.  
  47. IMPORT struct GadgetData        list_gadget_data[];
  48.  
  49. IMPORT APTR        eri,
  50.                     pri,
  51.                     egl,
  52.                     eml,
  53.                     use_gl;
  54.  
  55. IMPORT BYTE        *template_type_text_array[];
  56. IMPORT BYTE        *default_mx_text_array[],
  57.                     *default_cycle_text_array[],
  58.                     *default_listview_text_array[];
  59.  
  60. IMPORT BYTE        editor_window_title[], project_window_title[],
  61.                     editor_screen_title[];
  62.  
  63. IMPORT USHORT    snap_offset_table[];
  64.  
  65. IMPORT USHORT    editor_mode, snap_offset, template_type;
  66.  
  67. IMPORT USHORT    modify_mode, mouse_button;
  68. IMPORT SHORT    last_snap_x, last_snap_y;
  69.  
  70. IMPORT BOOL        info_displayed;
  71.